In this topic section, you will learn how to set up Web password security. Before you place this security scheme on a production Web site, set up and test your work in a temporary Web directory.
First, create a file called ".htaccess" using a text editor. It should contain following information:
AuthType Basic AuthName Protected Files AuthUserFile %path%/.passwd AuthGroupFile /dev/null <LIMIT GET> require valid-user </LIMIT>
NOTE: Be sure to replace "%path%" with the correct full path name
for the location of your .passwd
file (which will be created below).
This example shows only one of many possible ways to set up your .htaccess
file.
For more configuration options, please visit
NCSA's tutorial
on Web security.
If you follow these directions, your Web site will be configured so that only those users who know the valid name and password can access the files in the protected directory. Let's look at what each line does:
Now it's time to create your password file. This file is completely unrelated to the UNIX system password file, so you are free to make up whatever usernames and passwords you want in your Web password file. At a UNIX prompt, type these commands: Make sure you are in the directory you want to protect.
htpasswd -c .passwd username
You will be asked (twice) for a password for the user username. This command
will create the .passwd
file, which will contain an encrypted version of the
password. Once the .passwd
file is created, you need to make the password file
world-readable:
chmod 644 .passwd
Your directory is now protected. Any files you put into it will be accessible only to users who identify themselves as username, and who enter the correct password.
You can add more users to your password file at any time. Simply go to the
directory where the .passwd
file is, and type:
htpasswd .passwd newuser
This will add another user, newuser, to the list and ask for a password (twice) for this user.
To delete a user from your password file, use a text editor to edit the password file, and delete the line that begins with the user's name.